home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / gfx / edit / VE-VTexture2.lha / notes / VisualTexture2.notes
Encoding:
Text File  |  1999-07-16  |  1.9 KB  |  102 lines

  1.  
  2. Visual Engineering - Visual Texture 2 v1.00
  3. -------------------------------------------
  4.  
  5. This script will apply one of atleast 4*6*2*3 carefully selected
  6. effects to tileable texture.
  7.  
  8.  
  9.  
  10.  
  11. Test the script with "TestMaterials/VisualTexture-berry.jpg".
  12.  
  13. Might be a good idea to set a hotkey for Resize400x400.rexx.
  14.  
  15.  
  16.  
  17. There's other useful effects, which didn't fit to this script.
  18. Try these to original texture:
  19.  
  20.  - Vignette / Grey
  21.  - Local Contrast Stretch
  22.  - Fresco
  23.  
  24.  
  25. Try these before Visual Texture 2:
  26.  
  27.  - Equalization
  28.  - Gamma (-100)
  29.  
  30.  
  31.  
  32.  
  33. You can call this script from your own scripts, too.
  34.  
  35.  
  36.   address command "rexx:rx ie:arexx/VisualTexture2.rexx" <texture> <smoothness> <conv> <reflect> <method>
  37.  
  38.   - <texture>     is the name of the tileable texture
  39.   - <smoothness>  smoothing effect (GAUSSIAN,LOWPASS,MEDIAN)
  40.   - <conv>        number of style
  41.   - <reflect>     YES or NO
  42.   - <method>      SHINY,DARK,FADED
  43.  
  44.  
  45.  
  46.   Next lines return you the name of this new picture.
  47.  
  48.   PROJECT_LIST
  49.   xyz=result
  50.   pic=subword(xyz,1,1)
  51.  
  52.  
  53.  
  54.  
  55.   Example:
  56.  
  57.   rx ie:ARexx/VisualTexture2.rexx 000_testpic.iff none none 0 shiny
  58.  
  59.  
  60.  
  61.  
  62.  
  63. HISTORY
  64.  
  65.  1.00
  66.  
  67.   History started
  68.  
  69.  
  70.  
  71.  
  72.  
  73. The archive, where this file came from, can be distributed using
  74. any kind of media (CD, Email, Net, BBS, FTP...), but contents of
  75. original archive must not be seperated from each other.
  76.  
  77. You may modify the script for your own use, but don't except me to
  78. fix it, when you broke it. You may NOT spread modified versions of
  79. the script, nor part of it.
  80.  
  81. If you are going to spread a script of yours, which calls one of
  82. Visual Engineering -scripts, you must include either to
  83. documentfile of your script or header of the script itself, Visual
  84. Engineering -websiteaddress and author's name and email address.
  85.  
  86. Like this:
  87.  
  88.  
  89. /*
  90.  
  91.  This script uses Visual Engineering -script(s):
  92.  AddSpace.rexx, PrimaryColors.rexx
  93.  
  94.  By Marko Seppänen <marko.seppanen@wwnet.fi>
  95.  
  96.  Visual Engineering website:
  97.  http://wwnet.fi/users/smarko/visual/
  98.  
  99.  */
  100.  
  101.  
  102.